home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / bstring / bzero.c < prev    next >
C/C++ Source or Header  |  1992-05-14  |  3KB  |  106 lines

  1. /* 
  2.  * bzero.c --
  3.  *
  4.  *    Source code for the "bzero" library routine.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/bstring/RCS/bzero.c,v 1.7 92/05/14 18:56:24 kupfer Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <bstring.h>
  21. #include <machparam.h>
  22.  
  23. /*
  24.  * The following mask is used to detect proper alignment of addresses
  25.  * for doing word operations instead of byte operations.  It is
  26.  * machine-dependent.  If none of the following bits are set in an
  27.  * address, then word-based operations may be used. This value is imported
  28.  * from machparam.h
  29.  */
  30.  
  31. #define WORDMASK WORD_ALIGN_MASK
  32.  
  33. /*
  34.  *----------------------------------------------------------------------
  35.  *
  36.  * bzero --
  37.  *
  38.  *    Clear a block of memory to zeroes.  This routine is optimized
  39.  *    to do the clear in integer units, if the block is properly
  40.  *    aligned.
  41.  *
  42.  * Results:
  43.  *    Nothing is returned.  The memory at destPtr is cleared.
  44.  *
  45.  * Side effects:
  46.  *    None.
  47.  *
  48.  *----------------------------------------------------------------------
  49.  */
  50.  
  51. void
  52. bzero(destVoidPtr, numBytes)
  53.     _VoidPtr destVoidPtr;        /* Where to zero. */
  54.     register int numBytes;        /* How many bytes to zero. */
  55. {
  56.     register int *dPtr = (int *) destVoidPtr;
  57.     char *destPtr = destVoidPtr;
  58.  
  59.     /*
  60.      * If the address is on an aligned boundary then zero as much
  61.      * as we can in big transfers (and also avoid loop overhead by
  62.      * storing many zeros per iteration).  Once we have less than
  63.      * a whole int to zero then it must be done by byte zeroes.
  64.      */
  65.  
  66.     if (((int) dPtr & WORDMASK) == 0) {
  67.     while (numBytes >= 16*sizeof(int)) {
  68.         dPtr[0] = 0;
  69.         dPtr[1] = 0;
  70.         dPtr[2] = 0;
  71.         dPtr[3] = 0;
  72.         dPtr[4] = 0;
  73.         dPtr[5] = 0;
  74.         dPtr[6] = 0;
  75.         dPtr[7] = 0;
  76.         dPtr[8] = 0;
  77.         dPtr[9] = 0;
  78.         dPtr[10] = 0;
  79.         dPtr[11] = 0;
  80.         dPtr[12] = 0;
  81.         dPtr[13] = 0;
  82.         dPtr[14] = 0;
  83.         dPtr[15] = 0;
  84.         dPtr += 16;
  85.         numBytes -= 16*sizeof(int);
  86.     }
  87.     while (numBytes >= sizeof(int)) {
  88.         *dPtr++ = 0;
  89.         numBytes -= sizeof(int);
  90.     }
  91.     if (numBytes == 0) {
  92.         return;
  93.     }
  94.     destPtr = (char *) dPtr;
  95.     }
  96.  
  97.     /*
  98.      * Zero the remaining bytes
  99.      */
  100.  
  101.     while (numBytes > 0) {
  102.     *destPtr++ = 0;
  103.     numBytes--;
  104.     }
  105. }
  106.